home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / cgraphix / cdisp.c < prev    next >
Text File  |  1986-04-24  |  391b  |  23 lines

  1. /* «RM120»«PL99999»«TS4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76» */
  2. #include    <stdio.h>
  3. #define    EXTERN    extern
  4. #include    <typedef.h>
  5.  
  6. extern int InitGraphic();
  7. extern int LeaveGraphic();
  8.  
  9. main(argc, argv)
  10. int        argc;
  11. char    **argv;
  12. {
  13.     int i;
  14.  
  15.     InitGraphic();                /* init the system and screen    */
  16.  
  17.     LoadScreen(argv[1]);
  18.     inkey();
  19.  
  20.     LeaveGraphic();
  21. }
  22.  
  23.